From be39883de2cafe5240fac5c38fbcd143d1065392 Mon Sep 17 00:00:00 2001 From: Kristian Rietveld Date: Wed, 15 Dec 2010 21:17:27 +0100 Subject: [PATCH] Correct calculation of the cell focus rectangle The cell's focus rectangle is located around the cell's aligned area. To get to the correct coordinates for this rectangle, we have to subtract focus_line_width from the found aligned_area. --- gtk/gtkcellarea.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/gtk/gtkcellarea.c b/gtk/gtkcellarea.c index 079ab56afe..10190214e6 100644 --- a/gtk/gtkcellarea.c +++ b/gtk/gtkcellarea.c @@ -1056,10 +1056,21 @@ render_cell (GtkCellRenderer *renderer, (renderer == focus_cell || gtk_cell_area_is_focus_sibling (data->area, focus_cell, renderer))))) { + gint focus_line_width; GdkRectangle cell_focus; gtk_cell_renderer_get_aligned_area (renderer, data->widget, flags, &inner_area, &cell_focus); + gtk_widget_style_get (data->widget, + "focus-line-width", &focus_line_width, + NULL); + + /* The focus rectangle is located around the aligned area of the cell */ + cell_focus.x -= focus_line_width; + cell_focus.y -= focus_line_width; + cell_focus.width += 2 * focus_line_width; + cell_focus.height += 2 * focus_line_width; + if (data->first_focus) { data->first_focus = FALSE; -- 2.30.2